home *** CD-ROM | disk | FTP | other *** search
/ Alde ADA 1: #1 / CCCC 8804 Volume 1 Number 1 - Alde.iso / C / MISC / TUTOR / CTUTOR2.ARC / FORLOOP.C < prev    next >
Encoding:
Text File  |  1985-02-05  |  256 b   |  10 lines

  1. /* This is an example of a for loop */
  2.  
  3. main()
  4. {
  5. int index;
  6.  
  7.    for(index = 0;index < 6;index = index + 1)
  8.      printf("The value of the index is %d\n",index);
  9. }
  10.